@charset "utf-8";

/*全局初始化样式*/
header {box-shadow:0 0 .15rem rgba(0,0,0,.1);}
html {
    -webkit-text-size-adjust: 100%;
    font-size: 100px;
}

@media (min-width: 1025px) and (max-width: 1600px) {
    html {
        font-size: 6.25vw;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 20vw;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    padding: 0;
    margin: 0 auto;
    font-size:14px;;
    line-height: 1.42857143;
    font-family: "Microsoft YaHei";
    color: #333;
    min-width: 320px;
    width: 100%;
    zoom: 1;
    background: #fff;
    /*禁用Webkit内核浏览器的文字大小调整功能*/
    -webkit-text-size-adjust: none;

    /*取出点击出现半透明的灰色背景*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight: rgba(0, 0, 0, 0);

    /*控制文本可选性*/
    /*
-webkit-user-select: none;
    -ms-user-select: none;
   -moz-user-select: none;
 -khtml-user-select: none;
        user-select: none;
*/

    /*设置字体的抗锯齿或者说光滑度*/
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

* {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*word-break: break-all;*/
    word-wrap: break-word;
}

/*默认去除ul、li的默认样式*/
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    padding: 0;
}

.ul,
.ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dl,
.dl dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

dl,
dl dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,
input,
textarea {
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
}

/*表单元素获得焦点时不显示虚线框*/
input:focus {
    outline: none;
}

input,
button,
select,
textarea {
    outline: none;
    /*-webkit-appearance:none;*/
    /*强制去除表单自带的样式*/
}

/*不允许多行输入文本框有滚动条*/
textarea {
    resize: none;
    /*-webkit-appearance:none;*/
    /*强制去除textarea自带的样式*/
}

/*初始化表单元素样式*/
textarea,
input,
select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

/*初始化HTML5标签样式*/
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
    display: block;
}

/*去除figure边距*/
figure,
figcaption {
    margin: 0px;
    padding: 0px;
}

/*初始化图片样式*/
img {
    border: none;
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}

/*初始化a的样式和字体样式*/
a {
    color: #333;
    text-decoration: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
    color: #1c2a73;
}

/*清除浮动*/
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
    font-size: 0px;
}

.clearfix {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 单行隐藏 */
.dot {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 多行隐藏 */
.dot2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 多行隐藏 */
.dot3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.w1600 {
    max-width: 1600px;
    margin: 0 auto;
}

.w1440 {
    max-width: 1440px;
    margin: 0 auto;
}

.w1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.wh1 {
    width: 100%;
    height: 100%
}

.pr25 {
    padding-right: 0.25rem;
}

.pt70 {
    padding-top: 0.7rem;
}

.pb45 {
    padding-bottom: 0.45rem;
}
.pb110 {
    padding-bottom: 1.1rem;
}
.abs {
    position: absolute;
}

.dn {
    display: none
}

.db {
    display: block
}

.dib {
    display: inline-block
}

.li20 {
    line-height: 20px
}

.li25 {
    line-height: 25px
}

.li30 {
    line-height: 30px
}

.li35 {
    line-height: .35rem
}

.li40 {
    line-height: .4rem
}

.f12 {
    font-size: 12px
}

.f13 {
    font-size: 13px
}

.f15 {
    font-size: 15px
}

.f16 {
    font-size: 16px
}

.f17 {
    font-size: 17px
}

.f18 {
    font-size: 18px
}

.f20 {
    font-size: 20px
}

.f22 {
    font-size: 22px
}

.f24 {
    font-size: 24px
}

.f26 {
    font-size: 26px
}

.f28 {
    font-size: 28px
}

.f30 {
    font-size: .30rem
}

.f32 {
    font-size: .32rem
}

.f36 {
    font-size: .36rem
}

.f40 {
    font-size: .4rem
}

.f46 {
    font-size: .46rem
}

.f48 {
    font-size: .48rem
}

.f60 {
    font-size: .60rem
}

.f72 {
    font-size: .72rem
}

.dfcc,
.dfccs,
.dflc,
.dflr,
.dflrs {
    display: -webkit-flex;
    display: flex
}

.dfcc,
.dfccs {
    justify-content: center;
    -webkit-justify-content: center
}

.dfcc,
.dfccs,
.dflc,
.dflr,
.dflrs {
    align-items: center;
    -webkit-align-items: center
}

.dflr {
    justify-content: space-between;
    -webkit-justify-content: space-between
}

.dflrs {
    justify-content: space-around;
    -webkit-justify-content: space-around
}

.dfccs {
    -webkit-flex-direction: column;
    flex-direction: column
}

.fadel,
.fader,
.fadeup,
.fadez {
    visibility: visible;
}

.fadeup {
    animation: slideInUp ease-out .6s forwards;
    -webkit-animation: slideInUp ease-out .6s forwards
}

/* header */
.header .logo {
    height: 100px;
    line-height: 100px;
    overflow: hidden
}

.header .logo img {
    max-width: 2.6rem
}

.header nav {}

.header nav ul li {
    position: relative;
    z-index: 2;
    float: left;
    margin: 0 .22rem
}

.header nav ul li.cur a::after,
.header nav ul li:hover a::after {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.header nav ul li:hover>a {
    color: #009984
}

.header nav ul li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    top: 100px
}

.header nav ul li>a {
    position: relative;
    height: 100px;
    line-height: 104px;
    display: inline-block;
    font-size: 17px;
}

.header nav ul li>a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #009984;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transition: all .3s;
    -webkit-transition: all .3s
}

.header nav ul li .sub-nav {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    top: 130px;
    left: 50%;
    width: 140px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s
}

.header nav ul li .sub-nav a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 5px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.header nav ul li .sub-nav a:hover {
    color: #fff;
    background: #009984
}

.header .search-w {
    height: 95px
}

.header .search {
    width: 198px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    background: #f6f6f6;
    overflow: hidden
}

.header .search .txt {
    float: left;
    width: calc(100% - 50px);
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding-left: 30px;
    background: 0 0
}

.header .search .btn {
    float: right;
    width: 50px;
    height: 100%;
    background: url(../images/search.png) no-repeat center;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAVFBMVEUAAABVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVW+WkCdAAAAG3RSTlMA86cS1Qd0zb+G48R+W0E4lVIhm5BKLeppGrQHXWddAAABjklEQVRIx6VV2XLDIAzkBgdf8d3o//+zg6GtB5DiTPfNi1cCrTRiV8i1Fc5aJ0yv2R30gsMv9mV7K9hekGGWtMJACf6kFOLnLyvGWShIaHCFgxOu+4rfk7GRWegcqr9y3X6SLfUOkbHSn3RfU0zx2khyrrGHiFowhcQaznewGuTpraynH4hXmpzVIZJnCELZbE6uIRBqcxNOv0oyVAXBUAsostTFtUs7fVHhos5zxoVmGunuE/+XuHcXKyOKzPvC/9LLNlYeQZ+KXFb+wCRztclCakXZ4gp6DIG6umSpn02AtswWj5Dhs+i4HNiFQZQKhQ/fEwLslJVyD+xDElMB3OhLisBRLi/x/NH0Mm6AmUOCwmxuIYEr7xWHC3ZsBawPKJAoPmBGNzwTdHqBiBXtWmP/9oTrdKpLbAAU07MdxdyYVWZr52D3cQBQGwD3GRl2asrKjqKxpVK+PtBMySCv72ukSs0j72u0T/ZO7D5eyWKk4bCtja5bakDQhUcPiGcfwMQSsE/QVbctjcFZw74Bhtc3xlH5qhwAAAAASUVORK5CYII=) no-repeat center;
    background-size: 35%
}

.header .search-btn {
    width: 80px;
    height: 100px;
    background: url(../images/search.png) no-repeat center;
    cursor: pointer;
    background-size: 22px
}

.fix-wrap {
    display: none;
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8)
}

.fix-wrap .hide {
    position: fixed;
    width: 25px;
    height: 25px;
    padding: 25px;
    right: 5%;
    top: 5%;
    background: #090908;
    cursor: pointer;
    border-radius: 50%;
    transition: all .8s;
    -webkit-transition: all .8s;
    border: none;
}

.fix-wrap .hide::after,
.fix-wrap .hide::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 1px;
    height: 55%;
    background: #fff;
    margin-top: -27.5%
}

.fix-wrap .hide::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

.fix-wrap .hide::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

.fix-wrap .hide:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.fix-search {
    padding: 0 2.5%;
    background: #222
}

.fix-search:hover .search::after {
    transform: scale(1);
    -webkit-transform: scale(1)
}

.fix-search .search {
    position: relative;
    width: 100%;
    height: 125px;
    color: #555;
    padding-left: 88px;
    font-size: 66px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozNEE5NEZGREQ0QUQxMUU2OUVGNjk4Qzg2RjZCRDdENiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozNEE5NEZGRUQ0QUQxMUU2OUVGNjk4Qzg2RjZCRDdENiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjM0QTk0RkZCRDRBRDExRTY5RUY2OThDODZGNkJEN0Q2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjM0QTk0RkZDRDRBRDExRTY5RUY2OThDODZGNkJEN0Q2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/Hs+IwAAAVlJREFUeNpi+P//PwMaFgLiJiC+/x8VHATiCCzqMTC6QBKSIc+AeC0QzwXiA0jiT4DYmFhDS6CaNgGxOg4NIUD8E6rOipChcVCFZUR4jwWIj0PVq+EylA2q4AAx4YWEQeAxLkMroAqESTS0D6rPAZuhL4H4NYkGgrAG1NDl2AwFgRVkGMqClBpQ5JgYIOAdA+ngL5TmR5eAGapKhqE8UPo1NkNvAbEtGYaaQOmDGDLAMIiGho0niWEKy2UWuBL/VyD+RYKBFlAD9+PLUTZQRUeAWICAgU5QB4CAIaG8745UaHQCsRkQ8wIxOxCLA7EfEG9HK7kuArEsoVLKHIgf/McPQF72RioaXwGxCD5DYdgXiBcC8S0gfgvEV4B4OhA7IqmRh+ZGELgJxFyEDCUWSwLxVSSDZalhKAhzogWFLiPYZMqBJBBfBGJRIH5ALUNBQBGI5wPxVIAAAwAoIUyRNtFOOQAAAABJRU5ErkJggg==) no-repeat 35px center
}

.fix-search .search::after,
.fix-search .search::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transition: all 1s;
    -webkit-transition: all 1s
}

.fix-search .search::before {
    background: #515151
}

.fix-search .search::after {
    background: rgba(255, 255, 255, .5);
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1)
}

.fix-search .btn,
.fix-search .txt {
    color: #555;
    background: 0 0
}

.fix-search .txt {
    width: 100%;
    text-align: center;
    font-size: 66px;
    padding-right: 2%
}

.fix-search .btn {
    font-size: 24px
}

.banner,
.header-m,
.i-banner,
footer,
header,
main {
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-banner{
    text-align: center;
}
/* 关于我们 */
.pub-info{
    text-align: center;
    position: relative;
    z-index: 99;
}
.pub-info h3{
    margin-top: 5px;
    font-weight: normal;
}
.i-about{
    position: relative;
}
.i-about .Leftbox{
    width: 56%;
    position: relative;
    z-index: 99;
    padding-bottom: .35rem;
}
.i-about .Leftbox h5{
    color:#009984;
    font-weight: normal;
    
    margin-bottom: .4rem;
}
.i-about .Leftbox h5 span{
    position: relative;
    padding-bottom: .25rem;
    display: inline-block;
}
.i-about .Leftbox h5 span::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #b5b5b5;
}
.i-about .Leftbox .des{
    font-size: 16px;
    line-height: 2;
}
.i-about .imgBox{
    bottom:0;
    right:0;
    width: 45%;
}
.i-about .imgBox img{
    max-width: 100%;
}
.idxcount-box{background:#009984;}
.idxcount-box .item{width: 25%;float: left;border-left: 1px solid #3db1a1;padding:.5rem .5rem .4rem;position: relative;}
.idxcount-box .item:first-child{border-left:none;}
.idxcount-box .item .numBox{font-size:.46rem;color:#fff;line-height:1;}
.idxcount-box .item .numBox span{display: inline-block;line-height:1;vertical-align: baseline;margin-right:.05rem;}
.idxcount-box .item .numBox sub{font-size:.16rem;vertical-align: baseline;}
.idxcount-box .item .numBox sup{font-size:.16rem;display: inline-block;}
.idxcount-box .item p{font-size:.16rem;color:#fff;margin-top: .12rem;}
.idxcount-box .item .iconB{width: .25rem;position: absolute;top: .55rem;right: .5rem;}

/* 产品分类 */
.i-product .cate-list{}
.i-product .cate-list .item{
    width: 18.4%;
    float: left;
    margin-right: 2%;
    text-align: center;
    background: url(../images/cp_bg.png) no-repeat top center;
    background-size: contain;
    padding: .1rem;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-product .cate-list .item a{
    color: #009984;
}
.i-product .cate-list .item:last-child{
    margin-right: 0px;
}
.i-product .cate-list .item:hover{
    background: url(../images/cp_bg_active.png) no-repeat top center;
    background-size: contain;
}
.i-product .cate-list .item:hover a{
    color: #fff;
}
.i-product .cate-list .item:hover .line{
    background-color: #fff;
}
.i-product .cate-list .item .cate-title{
    font-size: .24rem;
    padding-top: .7rem;
    font-weight: bold;
    margin-bottom: .1rem;
}
.i-product .cate-list .item .cate-entitle{
    font-size: .18rem;
    margin-bottom: .1rem;
    font-weight: 300;
}
.i-product .cate-list .item .line{
    display: inline-block;
    height: .02rem;
    width: .46rem;
    background-color: #009984;
    margin-bottom: .45rem;
}
 
.i-product .cate-list .item .img img{
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-product .cate-list .item:hover .img img{
    transform: scale(1.1);
    
}
/* 生产能力 */
.i-capacity{
    background: url(../images/scl_bg.jpg) top center no-repeat;
}
.i-capacity .capacity-list .item{
    float: left;
    width: 25%;
}
.i-capacity .capacity-list .item .nr-box{
    padding: .3rem;
    background-color: #fff;
    height: 3rem;
}
.i-capacity .capacity-list .item .nr-box .icon{
    margin-bottom: .2rem;
}
.i-capacity .capacity-list .item .nr-box .icon img{
    height: .5rem;
}
.i-capacity .capacity-list .item .nr-box .title{
    font-size: .3rem;
    color: #151515;
    font-weight: bold;
    margin-bottom: .15rem;
}

.i-capacity .capacity-list .item .nr-box .desc{
    font-size: .16rem;
    color: #151515;
}
.i-capacity .capacity-list .item .img{
    height: 3rem;
    overflow: hidden;
}
.i-capacity .capacity-list .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-capacity .capacity-list .item:hover .img img{
    transform: scale(1.1);
}

/* 产品优势 */
.i-advant{}
.i-advant .advant-list{
    display: flex;
}
.i-advant .advant-list .item{
    width: 17%;
    margin-right: 3.75%;
    float: left;
    text-align: center;
    background-color: #f2f2f2;
    box-shadow: 2px 3px 7px 0px rgba(0,0,0,0.21);
    padding: .35rem;
}
.i-advant .advant-list .item .img{
    margin-bottom: .35rem;
}
.i-advant .advant-list .item .title{
    color: #009984;
    font-size: .21rem;
    font-weight: bold;
    margin-bottom: .35rem;
}
.i-advant .advant-list .item .desc{
    font-size: .16rem;
}
.i-advant .advant-list .item:last-child{
    margin-right:0px;
}
/* 新闻中心 */
.i-news{
    position: relative;
}
.i-news::before{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    height: 5.6rem;
    background-color: #f2f2f2;
    width: 100%;
    z-index: 1;
}
.i-news .news-list{
    position: relative;
    z-index: 99;
}
.i-news .news-list .item{
    float: left;
    width: 32.5%;
    margin-right: 1.25%;
}
.i-news .news-list .item:last-child{
    margin-right: 0px;
}
.i-news .news-list .item .nr-box{
    background-color: #fff;
    padding: .6rem .4rem .5rem;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-news .news-list .item .nr-box .title{
    font-size: .3rem;
    color: #000;
    margin-bottom: .3rem;
}
.i-news .news-list .item .nr-box .desc{
    font-size: .16rem;
    line-height: 2;
    margin-bottom: .2rem;
}
.i-news .news-list .item .nr-box .more {
    font-size: .16rem;
    border-bottom: 1px solid #000;
    padding-bottom: .05rem;
}
.i-news .news-list .item:hover .nr-box{
    background-color: #009984;
    color: #fff;
}
.i-news .news-list .item:hover .nr-box a{
    color:#fff;
    border-color:  #fff;
}
.i-news .news-list .item .img {
    overflow: hidden;
}
.i-news .news-list .item .img img{
    transition: all .5s;
    -webkit-transition: all .5s;
}
.i-news .news-list .item:hover .img img{
    transform: scale(1.1);
}


/* footer */
.footer{
    background-color: #7f7f7f;
    color: #fff;
}
.footer .footer-wrap{
    padding: .6rem 0 .35rem;
}
.footer .footer-wrap .ft-logo{
    margin-bottom: .5rem;
}
.footer .footer-wrap .share{
    margin-bottom: .15rem;
}
.footer .footer-wrap .share a{
    padding-right: .05rem;
}
.footer .footer-wrap .weixin{
    width: 1.25rem;
}
.footer .footer-wrap .weixin p{
    text-align: center;
    color: #fff;
    font-size: .16rem;
    margin-top:.05rem;
}

.footer .footer-wrap .daohang{
    margin-left: 2.2rem;
    max-width: 3.65rem;
}
.footer .footer-wrap .title{
    font-weight: bold;
    margin-bottom: .3rem;
}
.footer .footer-wrap .daohang-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .footer-wrap .daohang-list li{
    float: left;
    margin-right: 1.1rem;
    margin-bottom: .2rem;
}
.footer .footer-wrap .daohang-list li a{
    font-size: .18rem;
    color: #fff;
}
.footer .footer-wrap .i-contact{
    margin-left: 1.7rem;
}
.footer .footer-wrap .i-contact p{
    font-size: .18rem;
    margin-bottom: .1rem;
}
.copyright{
    border-top:1px solid #ababab;
    padding-top: .2rem;
    padding-bottom: .2rem;
    color: #fff;
    text-align: center;
    font-size: .16rem;
}
.copyright a{
    color: #fff;
    font-size: .16rem;
}
@media(max-width:1640px){
    .w1600{padding:0 4%;}
}

@media(max-width:1480px){
    .w1440{padding:0 4%;}
}

@media(max-width:1280px){
    .w1200{padding:0 4%;}
}
@media (max-width:1024px) {
    body {
        padding-top: 70px
    }

    .f48{font-size: .36rem;}
    .header {
        display: none
    }

    .header-m {
        display: block !important;
        z-index: 999;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 70px;
        background: #fff;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .1)
    }

    .header-m::after {
        display: none;
        position: fixed;
        content: '';
        top: 70px;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5)
    }

    .header-m .logo {
        position: absolute;
        left: 50%;
        line-height: 70px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%)
    }

    .header-m .logo img {
        max-height: 70px
    }

    .header-m .m-menu-b {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 70px;
        cursor: pointer
    }

    .header-m .m-menu-b::after,
    .header-m .m-menu-b::before {
        position: absolute;
        top: 50%;
        left: calc(35px / 2);
        content: '';
        width: 25px;
        height: 1px;
        z-index: 9999;
        transition: all .3s ease-out .3s;
        -webkit-transition: all .3s ease-out .3s;
        background: #222
    }

    .header-m .m-menu-b::before {
        transform: translateY(-4px) rotate(0);
        -webkit-transform: translateY(-4px) rotate(0)
    }

    .header-m .m-menu-b::after {
        transform: translateY(4px) rotate(0);
        -webkit-transform: translateY(4px) rotate(0)
    }

    .header-m .m-menu {
        display: none;
        z-index: 888;
        position: fixed;
        width: 100%;
        width: 260px;
        height: 100%;
        top: 0;
        left: -260px;
        opacity: 1;
        background: #fafafa;
        text-align: left;
        padding-top: 70px
    }

    .header-m .m-menu::after {
        position: absolute;
        top: 70px;
        content: '';
        width: 100%;
        height: 1px;
        background: #ebebeb
    }

    .header-m .nav {
        height: calc(100% - 82px);
        overflow-x: hidden;
        overflow-y: auto
    }

    .header-m .nav>li {
        border-bottom: 1px solid #ebebeb;
        animation: resize .5s both;
        -webkit-animation: resize .5s both
    }

    .header-m .nav>li>a {
        position: relative;
        display: block;
        width: 100%;
        font-size: 15px;
        padding: 0 40px;
        color: #666;
        vertical-align: middle;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: break-word;
        overflow: hidden;
        height: 50px;
        line-height: 50px
    }

    .header-m .nav>li>a::after {
        position: absolute;
        left: 20px;
        top: 50%;
        margin-top: -5px;
        content: '';
        width: 8px;
        height: 8px;
        border: 1px solid #999;
        border-radius: 50%;
        background: 0 0;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .header-m .nav>li .sub-nav {
        display: none
    }

    .header-m .nav>li .sub-nav a {
        position: relative;
        display: block;
        line-height: 24px;
        padding: 12px 40px;
        background: #f2f2f2;
        color: #4e4e4e
    }

    .header-m .nav>li .sub-nav a::after,
    .header-m .nav>li .sub-nav a::before {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        left: 20px;
        top: 20px;
        border: 5px solid transparent;
        overflow: hidden;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .header-m .nav>li .sub-nav a::before {
        left: 21px;
        border-left: 5px solid #555
    }

    .header-m .nav>li .sub-nav a::after {
        border-left: 5px #ebebeb solid
    }

    .header-m .nav>li.cur {
        position: relative
    }

    .header-m .nav>li.cur::after,
    .header-m .nav>li.cur::before {
        position: absolute;
        content: '';
        background: #999;
        transition: all .5s;
        -webkit-transition: all .5s
    }

    .header-m .nav>li.cur::before {
        top: 19px;
        right: 25px;
        width: 2px;
        height: 12px
    }

    .header-m .nav>li.cur::after {
        top: 24px;
        right: 20px;
        width: 12px;
        height: 2px
    }

    .header-m .nav>li.active::after {
        background: #fff
    }

    .header-m .nav>li.active::before {
        height: 0
    }

    .header-m .nav>li.active>a {
        color: #fff;
        background: #009984
    }

    .header-m .nav>li.active>a::after {
        background: #fff;
        border-color: #fff
    }

    .header-m .nav>li.active .sub-nav li {
        animation: ReturnToNormal .5s both;
        -webkit-animation: ReturnToNormal .5s both
    }

    .header-m .m-search-b {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 70px;
        cursor: pointer;
        background: url(../images/search.png) no-repeat center;
        background-size: 23px
    }

    html.active {
        height: 100%;
        overflow: hidden
    }

    html.active body {
        height: 100%;
        overflow: hidden
    }

    html.active .header-m {
        left: 260px
    }

    html.active .header-m::after {
        display: block
    }

    html.active .header-m .m-menu-b::after,
    html.active .header-m .m-menu-b::before {
        background: #000
    }

    html.active .header-m .m-menu-b::before {
        transform: translateY(0) rotate(225deg);
        -webkit-transform: translateY(0) rotate(225deg)
    }

    html.active .header-m .m-menu-b::after {
        transform: translateY(0) rotate(-225deg);
        -webkit-transform: translateY(0) rotate(-225deg)
    }

    html.active .header-m .m-menu {
        display: block;
        left: 0
    }

    html.active .banner,
    html.active .i-banner,
    html.active footer,
    html.active main {
        transform: translateX(260px);
        -webkit-transform: translateX(260px)
    }

    .fix-search {
        padding: 0 15px
    }

    .fix-search .search {
        height: 65px;
        padding-left: 0;
        background: 0 0
    }

    .fix-search .txt {
        font-size: 20px;
        text-align: left;
        padding: 0 10px
    }

    .fix-search .btn {
        font-size: 22px;
        color: #777
    }
    .i-about .Leftbox{
        width: 100%;
    }
    .i-about .imgBox{
        position: static;
        width: 100%;
    }
    .idxcount-box .item{padding:.3rem .1rem;}
    .idxcount-box .item .iconB{right: .1rem;top: .3rem;}
    .idxcount-box .item .numBox{font-size:.32rem;}
    .idxcount-box .item .numBox sub,.idxcount-box .item .numBox sup{font-size:.14rem;}
    .idxcount-box .item p{font-size:.14rem;margin-top: .1rem;}

    .i-product .cate-list .item{
        width: 48.4%;
        margin-top: 2%;
    }
    .i-product .cate-list .item:nth-of-type(2n){
        margin-right: 0px;
    }
    .i-capacity{
        background-size: cover;
    }
    .i-capacity .capacity-list .item{
        width: 50%;
    }
    .i-advant .advant-list{
        flex-wrap: wrap;
    }
    .i-advant .advant-list .item{
        width: 47%;
        margin-top: 4%;
    }
    .i-advant .advant-list .item:nth-of-type(2n){
        margin-right: 0px;
    }
    .i-news .news-list .item .nr-box {
        padding: 0.4rem 0.3rem 0.3rem;
    }

    .footer .footer-wrap{
        display: flex;
        justify-content: space-between;

    }
    .footer .footer-wrap .column{
        flex:1
    }
    .footer .footer-wrap .daohang{
        margin-left: 0px;
    }
    .footer .footer-wrap .i-contact {
        margin-left: 0px;
    }
    .footer .footer-wrap .daohang-list li{
        width: 50%;
        margin-right: 0px;
    }
}


@media (max-width: 768px)
{
    .i-capacity .capacity-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .i-capacity .capacity-list .item{
        background-color: #fff;
    }
    .i-capacity .capacity-list .item .nr-box{
        padding: .2rem;
        
    }
    
    .i-capacity .capacity-list .item .nr-box .title{
        font-size: .2rem;
    }
}

@media (max-width: 640px)
{
    .i-news .news-list .item {
        width: 100%;
        margin-right: 0px; 
    }
    .i-news .news-list .item .nr-box {
        padding: 0.4rem 0.2rem 0.3rem;
    }
    .i-news .news-list .item .img img {
        width: 100%;
    }

    .footer .footer-wrap{
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-wrap .column{
        text-align: center;
    }
    .footer .footer-wrap .weixin{
        margin: auto;
    }
    .footer .footer-wrap .daohang{
        display: none;
    }
    .footer .footer-wrap .i-contact{
        margin-top: .2rem;
    }
    .f36{
        font-size: .3rem;
    }
}